home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2004-053.nasl < prev    next >
Text File  |  2005-01-14  |  4KB  |  115 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12462);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CAN-2004-0107", "CVE-2004-0108");
  13.  
  14.  name["english"] = "RHSA-2004-053: sysstat";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   Updated sysstat packages that fix various bugs and security issues are now
  21.   available.
  22.  
  23.   Sysstat is a tool for gathering system statistics. Isag is a utility for
  24.   graphically displaying these statistics.
  25.  
  26.   A bug was found in the Red Hat sysstat package post and trigger scripts,
  27.   which used insecure temporary file names. A local attacker could overwrite
  28.   system files using carefully-crafted symbolic links in the /tmp directory.
  29.   The Common Vulnerabilities and Exposures project (cve.mitre.org) has
  30.   assigned the name CAN-2004-0107 to this issue.
  31.  
  32.   While fixing this issue, a flaw was discovered in the isag utility, which
  33.   also used insecure temporary file names. A local attacker could overwrite
  34.   files that the user running isag has write access to using
  35.   carefully-crafted symbolic links in the /tmp directory. The Common
  36.   Vulnerabilities and Exposures project (cve.mitre.org) has assigned the name
  37.   CAN-2004-0108 to this issue.
  38.  
  39.   Other issues addressed in this advisory include:
  40.  
  41.   * iostat -x should return all partitions on the system (up to a maximum of
  42.   1024)
  43.  
  44.   * sar should handle network device names with more than 8 characters
  45.   properly
  46.  
  47.   * mpstat should work correctly with more than 7 CPUs as well as generate
  48.   correct statistics when accessing individual CPUs. This issue only
  49.   affected Red Hat Enterprise Linux 2.1
  50.  
  51.   * The sysstat package was not built with the proper dependencies;
  52.   therefore, it was possible that isag could not be run because the necessary
  53.   tools were not available. Therefore, isag was split off into its own
  54.   subpackage with the required dependencies in place. This issue only
  55.   affects Red Hat Enterprise Linux 2.1.
  56.  
  57.   Users of sysstat and isag should upgrade to these updated packages, which
  58.   contain patches to correct these issues.
  59.  
  60.   NOTE: In order to use isag on Red Hat Enterprise Linux 2.1, you must
  61.   install the sysstat-isag package after upgrading.
  62.  
  63.  
  64.  
  65.  
  66. Solution : http://rhn.redhat.com/errata/RHSA-2004-053.html
  67. Risk factor : High';
  68.  
  69.  script_description(english:desc["english"]);
  70.  
  71.  summary["english"] = "Check for the version of the sysstat packages";
  72.  script_summary(english:summary["english"]);
  73.  
  74.  script_category(ACT_GATHER_INFO);
  75.  
  76.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  77.  family["english"] = "Red Hat Local Security Checks";
  78.  script_family(english:family["english"]);
  79.  
  80.  script_dependencies("ssh_get_info.nasl");
  81.  
  82.  script_require_keys("Host/RedHat/rpm-list");
  83.  exit(0);
  84. }
  85.  
  86. include("rpm.inc");
  87. if ( rpm_check( reference:"sysstat-4.0.1-12", release:"RHEL2.1") )
  88. {
  89.  security_hole(0);
  90.  exit(0);
  91. }
  92. if ( rpm_check( reference:"sysstat-isag-4.0.1-12", release:"RHEL2.1") )
  93. {
  94.  security_hole(0);
  95.  exit(0);
  96. }
  97. if ( rpm_check( reference:"sysstat-4.0.7-4.EL3.2", release:"RHEL3") )
  98. {
  99.  security_hole(0);
  100.  exit(0);
  101. }
  102.  
  103. if ( rpm_exists(rpm:"sysstat-", release:"RHEL2.1") )
  104. {
  105.  set_kb_item(name:"CAN-2004-0107", value:TRUE);
  106.  set_kb_item(name:"CVE-2004-0108", value:TRUE);
  107. }
  108. if ( rpm_exists(rpm:"sysstat-", release:"RHEL3") )
  109. {
  110.  set_kb_item(name:"CAN-2004-0107", value:TRUE);
  111.  set_kb_item(name:"CVE-2004-0108", value:TRUE);
  112. }
  113.  
  114. set_kb_item(name:"RHSA-2004-053", value:TRUE);
  115.